﻿@charset "UTF-8";
/* Main colors */
/* Derived colors */
/* Text styles */
/* Effects */
* {
  font-family: Barlow;
  color: #32323c;
}
*:focus-visible {
  outline-color: #d65674;
  outline-style: solid;
  outline-width: 2px;
  border-radius: 3px;
}

::selection {
  background-color: rgba(75, 83, 137, 0.25);
}

.bg-primary {
  background-color: #4b5389 !important;
}

.bg-secondary {
  background-color: #c73456 !important;
}

.bg-info,
.bg-success {
  background-color: #26a66c !important;
}

.bg-warning,
.bg-danger {
  background-color: #f05717 !important;
}

.bg-dark {
  background-color: #32323c !important;
}

.bg-light {
  background-color: #ececef !important;
}

.btn {
  box-sizing: border-box !important;
  border-radius: 3px;
  font-size: 1rem;
  font-weight: 500;
}
.btn:focus {
  box-shadow: none;
}
.btn.disabled, .btn:disabled {
  cursor: default;
}
.btn i {
  font-size: 0.875rem;
  margin-right: 0.35rem;
}

.btn-lg {
  font-size: 1.25rem;
}
.btn-lg i {
  font-size: 1rem;
  margin-right: 0.4rem;
}

.btn-sm {
  font-size: 0.875rem;
}
.btn-sm i {
  font-size: 0.75rem;
  margin-right: 0.3rem;
}

.btn-icon i {
  margin-right: 0rem;
}

.bcs-button-row,
.bcs-button-row-end {
  display: flex;
  justify-content: start;
  align-items: center;
  padding: 0rem;
  gap: 0.5rem;
}

.bcs-button-row-end {
  justify-content: end;
}

.btn.btn-primary {
  color: #ffffff;
  background-color: #4b5389;
  border: 1px solid #4b5389;
  transition: all 0.15s ease-out;
}
.btn.btn-primary:not(.disabled):not(:disabled):hover, .btn.btn-primary:not(.disabled):not(:disabled):focus {
  background-color: #3d4470;
  border: 1px solid #3d4470;
}
.btn.btn-primary:not(.disabled):not(:disabled):focus, .btn.btn-primary:not(.disabled):not(:disabled):active:focus, .btn.btn-primary:not(.disabled):not(:disabled).focus {
  box-shadow: 0 0 0 0.2rem rgba(75, 83, 137, 0.25);
}
.btn.btn-primary:not(.disabled):not(:disabled):active {
  color: #ffffff;
  background-color: #383e67;
  border: 1px solid #383e67;
}
.btn.btn-primary i {
  color: #ffffff;
}

.btn.btn-secondary {
  color: #ffffff;
  background-color: #c73456;
  border: 1px solid #c73456;
  transition: all 0.15s ease-out;
}
.btn.btn-secondary:not(.disabled):not(:disabled):hover, .btn.btn-secondary:not(.disabled):not(:disabled):focus {
  background-color: #a32b46;
  border: 1px solid #a32b46;
}
.btn.btn-secondary:not(.disabled):not(:disabled):focus, .btn.btn-secondary:not(.disabled):not(:disabled):active:focus, .btn.btn-secondary:not(.disabled):not(:disabled).focus {
  box-shadow: 0 0 0 0.2rem rgba(199, 52, 86, 0.25);
}
.btn.btn-secondary:not(.disabled):not(:disabled):active {
  color: #ffffff;
  background-color: #952740;
  border: 1px solid #952740;
}
.btn.btn-secondary i {
  color: #ffffff;
}

.btn.btn-success,
.btn.btn-info {
  color: #ffffff;
  background-color: #26a66c;
  border: 1px solid #26a66c;
  transition: all 0.15s ease-out;
}
.btn.btn-success:not(.disabled):not(:disabled):hover, .btn.btn-success:not(.disabled):not(:disabled):focus,
.btn.btn-info:not(.disabled):not(:disabled):hover,
.btn.btn-info:not(.disabled):not(:disabled):focus {
  background-color: #1f8859;
  border: 1px solid #1f8859;
}
.btn.btn-success:not(.disabled):not(:disabled):focus, .btn.btn-success:not(.disabled):not(:disabled):active:focus, .btn.btn-success:not(.disabled):not(:disabled).focus,
.btn.btn-info:not(.disabled):not(:disabled):focus,
.btn.btn-info:not(.disabled):not(:disabled):active:focus,
.btn.btn-info:not(.disabled):not(:disabled).focus {
  box-shadow: 0 0 0 0.2rem rgba(38, 166, 108, 0.25);
}
.btn.btn-success:not(.disabled):not(:disabled):active,
.btn.btn-info:not(.disabled):not(:disabled):active {
  color: #ffffff;
  background-color: #1c7c51;
  border: 1px solid #1c7c51;
}
.btn.btn-success i,
.btn.btn-info i {
  color: #ffffff;
}

.btn.btn-warning,
.btn.btn-danger {
  color: #ffffff;
  background-color: #f05717;
  border: 1px solid #f05717;
  transition: all 0.15s ease-out;
}
.btn.btn-warning:not(.disabled):not(:disabled):hover, .btn.btn-warning:not(.disabled):not(:disabled):focus,
.btn.btn-danger:not(.disabled):not(:disabled):hover,
.btn.btn-danger:not(.disabled):not(:disabled):focus {
  background-color: #c54713;
  border: 1px solid #c54713;
}
.btn.btn-warning:not(.disabled):not(:disabled):focus, .btn.btn-warning:not(.disabled):not(:disabled):active:focus, .btn.btn-warning:not(.disabled):not(:disabled).focus,
.btn.btn-danger:not(.disabled):not(:disabled):focus,
.btn.btn-danger:not(.disabled):not(:disabled):active:focus,
.btn.btn-danger:not(.disabled):not(:disabled).focus {
  box-shadow: 0 0 0 0.2rem rgba(240, 87, 23, 0.25);
}
.btn.btn-warning:not(.disabled):not(:disabled):active,
.btn.btn-danger:not(.disabled):not(:disabled):active {
  color: #ffffff;
  background-color: #b44111;
  border: 1px solid #b44111;
}
.btn.btn-warning i,
.btn.btn-danger i {
  color: #ffffff;
}

.btn.btn-outline-primary {
  color: #4b5389;
  background-color: #ffffff;
  border: 1px solid #4b5389;
  transition: all 0.15s ease-out;
}
.btn.btn-outline-primary:not(.disabled):not(:disabled):hover, .btn.btn-outline-primary:not(.disabled):not(:disabled):focus {
  background-color: rgba(75, 83, 137, 0.15);
  border: 1px solid #4b5389;
}
.btn.btn-outline-primary:not(.disabled):not(:disabled):focus, .btn.btn-outline-primary:not(.disabled):not(:disabled):active:focus {
  box-shadow: 0 0 0 0.2rem rgba(75, 83, 137, 0.15);
}
.btn.btn-outline-primary:not(.disabled):not(:disabled):active {
  color: #4b5389;
  background-color: rgba(75, 83, 137, 0.2);
  border: 1px solid #4b5389;
}
.btn.btn-outline-primary i {
  color: #4b5389;
}

.btn.btn-outline-secondary {
  color: #c73456;
  background-color: #ffffff;
  border: 1px solid #c73456;
  transition: all 0.15s ease-out;
}
.btn.btn-outline-secondary:not(.disabled):not(:disabled):hover, .btn.btn-outline-secondary:not(.disabled):not(:disabled):focus {
  background-color: rgba(199, 52, 86, 0.15);
  border: 1px solid #c73456;
}
.btn.btn-outline-secondary:not(.disabled):not(:disabled):focus, .btn.btn-outline-secondary:not(.disabled):not(:disabled):active:focus {
  box-shadow: 0 0 0 0.2rem rgba(199, 52, 86, 0.15);
}
.btn.btn-outline-secondary:not(.disabled):not(:disabled):active {
  color: #c73456;
  background-color: rgba(199, 52, 86, 0.2);
  border: 1px solid #c73456;
}
.btn.btn-outline-secondary i {
  color: #c73456;
}

.btn.btn-outline-success,
.btn.btn-outline-info {
  color: #26a66c;
  background-color: #ffffff;
  border: 1px solid #26a66c;
  transition: all 0.15s ease-out;
}
.btn.btn-outline-success:not(.disabled):not(:disabled):hover, .btn.btn-outline-success:not(.disabled):not(:disabled):focus,
.btn.btn-outline-info:not(.disabled):not(:disabled):hover,
.btn.btn-outline-info:not(.disabled):not(:disabled):focus {
  background-color: rgba(38, 166, 108, 0.15);
  border: 1px solid #26a66c;
}
.btn.btn-outline-success:not(.disabled):not(:disabled):focus, .btn.btn-outline-success:not(.disabled):not(:disabled):active:focus,
.btn.btn-outline-info:not(.disabled):not(:disabled):focus,
.btn.btn-outline-info:not(.disabled):not(:disabled):active:focus {
  box-shadow: 0 0 0 0.2rem rgba(38, 166, 108, 0.15);
}
.btn.btn-outline-success:not(.disabled):not(:disabled):active,
.btn.btn-outline-info:not(.disabled):not(:disabled):active {
  color: #26a66c;
  background-color: rgba(38, 166, 108, 0.2);
  border: 1px solid #26a66c;
}
.btn.btn-outline-success i,
.btn.btn-outline-info i {
  color: #26a66c;
}

.btn.btn-outline-warning,
.btn.btn-outline-danger {
  color: #f05717;
  background-color: #ffffff;
  border: 1px solid #f05717;
  transition: all 0.15s ease-out;
}
.btn.btn-outline-warning:not(.disabled):not(:disabled):hover, .btn.btn-outline-warning:not(.disabled):not(:disabled):focus,
.btn.btn-outline-danger:not(.disabled):not(:disabled):hover,
.btn.btn-outline-danger:not(.disabled):not(:disabled):focus {
  background-color: rgba(240, 87, 23, 0.15);
  border: 1px solid #f05717;
}
.btn.btn-outline-warning:not(.disabled):not(:disabled):focus, .btn.btn-outline-warning:not(.disabled):not(:disabled):active:focus,
.btn.btn-outline-danger:not(.disabled):not(:disabled):focus,
.btn.btn-outline-danger:not(.disabled):not(:disabled):active:focus {
  box-shadow: 0 0 0 0.2rem rgba(240, 87, 23, 0.15);
}
.btn.btn-outline-warning:not(.disabled):not(:disabled):active,
.btn.btn-outline-danger:not(.disabled):not(:disabled):active {
  color: #f05717;
  background-color: rgba(240, 87, 23, 0.2);
  border: 1px solid #f05717;
}
.btn.btn-outline-warning i,
.btn.btn-outline-danger i {
  color: #f05717;
}

.btn.btn-text-primary {
  color: #4b5389;
  /*background-color: $white;*/
  border: none;
  transition: all 0.15s ease-out;
}
.btn.btn-text-primary:not(.disabled):not(:disabled):hover, .btn.btn-text-primary:not(.disabled):not(:disabled):focus {
  background-color: rgba(75, 83, 137, 0.15);
}
.btn.btn-text-primary:not(.disabled):not(:disabled):focus, .btn.btn-text-primary:not(.disabled):not(:disabled):active:focus {
  box-shadow: 0 0 0 0.2rem rgba(75, 83, 137, 0.15);
}
.btn.btn-text-primary:not(.disabled):not(:disabled):active {
  color: #4b5389;
  background-color: rgba(75, 83, 137, 0.2);
}
.btn.btn-text-primary i {
  color: #4b5389;
}

.btn.btn-text-secondary {
  color: #c73456;
  /*background-color: $white;*/
  border: none;
  transition: all 0.15s ease-out;
}
.btn.btn-text-secondary:not(.disabled):not(:disabled):hover, .btn.btn-text-secondary:not(.disabled):not(:disabled):focus {
  background-color: rgba(199, 52, 86, 0.15);
}
.btn.btn-text-secondary:not(.disabled):not(:disabled):focus, .btn.btn-text-secondary:not(.disabled):not(:disabled):active:focus {
  box-shadow: 0 0 0 0.2rem rgba(199, 52, 86, 0.15);
}
.btn.btn-text-secondary:not(.disabled):not(:disabled):active {
  color: #c73456;
  background-color: rgba(199, 52, 86, 0.2);
}
.btn.btn-text-secondary i {
  color: #c73456;
}

.btn.btn-text-success,
.btn.btn-text-info {
  color: #26a66c;
  /*background-color: $white;*/
  border: none;
  transition: all 0.15s ease-out;
}
.btn.btn-text-success:not(.disabled):not(:disabled):hover, .btn.btn-text-success:not(.disabled):not(:disabled):focus,
.btn.btn-text-info:not(.disabled):not(:disabled):hover,
.btn.btn-text-info:not(.disabled):not(:disabled):focus {
  background-color: rgba(38, 166, 108, 0.15);
}
.btn.btn-text-success:not(.disabled):not(:disabled):focus, .btn.btn-text-success:not(.disabled):not(:disabled):active:focus,
.btn.btn-text-info:not(.disabled):not(:disabled):focus,
.btn.btn-text-info:not(.disabled):not(:disabled):active:focus {
  box-shadow: 0 0 0 0.2rem rgba(38, 166, 108, 0.15);
}
.btn.btn-text-success:not(.disabled):not(:disabled):active,
.btn.btn-text-info:not(.disabled):not(:disabled):active {
  color: #26a66c;
  background-color: rgba(38, 166, 108, 0.2);
}
.btn.btn-text-success i,
.btn.btn-text-info i {
  color: #26a66c;
}

.btn.btn-text-warning,
.btn.btn-text-danger {
  color: #f05717;
  /*background-color: $white;*/
  border: none;
  transition: all 0.15s ease-out;
}
.btn.btn-text-warning:not(.disabled):not(:disabled):hover, .btn.btn-text-warning:not(.disabled):not(:disabled):focus,
.btn.btn-text-danger:not(.disabled):not(:disabled):hover,
.btn.btn-text-danger:not(.disabled):not(:disabled):focus {
  background-color: rgba(240, 87, 23, 0.15);
}
.btn.btn-text-warning:not(.disabled):not(:disabled):focus, .btn.btn-text-warning:not(.disabled):not(:disabled):active:focus,
.btn.btn-text-danger:not(.disabled):not(:disabled):focus,
.btn.btn-text-danger:not(.disabled):not(:disabled):active:focus {
  box-shadow: 0 0 0 0.2rem rgba(240, 87, 23, 0.15);
}
.btn.btn-text-warning:not(.disabled):not(:disabled):active,
.btn.btn-text-danger:not(.disabled):not(:disabled):active {
  color: #f05717;
  background-color: rgba(240, 87, 23, 0.2);
}
.btn.btn-text-warning i,
.btn.btn-text-danger i {
  color: #f05717;
}

.btn-group.show > .btn.btn-primary {
  background-color: #4b5389;
  border: 1px solid #4b5389;
}

.btn-group.show > .btn.btn-secondary {
  background-color: #c73456;
  border: 1px solid #c73456;
}

.btn-group.show > .btn.btn-success,
.btn-group.show > .btn.btn-info {
  background-color: #26a66c;
  border: 1px solid #26a66c;
}

.btn-group.show > .btn.btn-warning,
.btn-group.show > .btn.btn-danger {
  background-color: #f05717;
  border: 1px solid #f05717;
}

.btn-group.btn-group-toggle > label.btn.btn-primary {
  color: #4b5389;
  background-color: #ffffff;
  border: 1px solid #4b5389;
  transition: all 0.15s ease-out;
}
.btn-group.btn-group-toggle > label.btn.btn-primary:not(.disabled):not(:disabled):hover, .btn-group.btn-group-toggle > label.btn.btn-primary:not(.disabled):not(:disabled):focus {
  background-color: rgba(75, 83, 137, 0.15);
  border: 1px solid #4b5389;
}
.btn-group.btn-group-toggle > label.btn.btn-primary:not(.disabled):not(:disabled):focus, .btn-group.btn-group-toggle > label.btn.btn-primary:not(.disabled):not(:disabled):active:focus {
  box-shadow: 0 0 0 0.2rem rgba(75, 83, 137, 0.15);
}
.btn-group.btn-group-toggle > label.btn.btn-primary:not(.disabled):not(:disabled):active {
  color: #4b5389;
  background-color: rgba(75, 83, 137, 0.2);
  border: 1px solid #4b5389;
}
.btn-group.btn-group-toggle > label.btn.btn-primary i {
  color: #4b5389;
}

.btn-group.btn-group-toggle > label.btn.btn-primary.active {
  color: #ffffff;
  background-color: #4b5389;
  border: 1px solid #4b5389;
  transition: all 0.15s ease-out;
}
.btn-group.btn-group-toggle > label.btn.btn-primary.active:not(.disabled):not(:disabled):hover, .btn-group.btn-group-toggle > label.btn.btn-primary.active:not(.disabled):not(:disabled):focus {
  background-color: #3d4470;
  border: 1px solid #3d4470;
}
.btn-group.btn-group-toggle > label.btn.btn-primary.active:not(.disabled):not(:disabled):focus, .btn-group.btn-group-toggle > label.btn.btn-primary.active:not(.disabled):not(:disabled):active:focus, .btn-group.btn-group-toggle > label.btn.btn-primary.active:not(.disabled):not(:disabled).focus {
  box-shadow: 0 0 0 0.2rem rgba(75, 83, 137, 0.25);
}
.btn-group.btn-group-toggle > label.btn.btn-primary.active:not(.disabled):not(:disabled):active {
  color: #ffffff;
  background-color: #383e67;
  border: 1px solid #383e67;
}
.btn-group.btn-group-toggle > label.btn.btn-primary.active i {
  color: #ffffff;
}

.btn.btn-link {
  color: #c73456;
}

.btn-text-in-table {
  padding: 0;
  padding-left: 0.25rem;
  padding-right: 0.25rem;
  font-weight: 400;
}
.btn-text-in-table i {
  margin-right: 0.1rem;
}

.bcs-tile-group {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}
.bcs-tile-group .bcs-tile {
  border-radius: 6px;
  background-color: #ececef;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-decoration: none !important;
  width: 10rem;
  height: 10rem;
  min-width: 10rem;
  min-height: 10rem;
  max-width: 10rem;
  max-width: 10rem;
  transition: all 0.15s ease-out;
}
.bcs-tile-group .bcs-tile i {
  color: rgba(80, 81, 98, 0.8);
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  margin-top: -0.8rem;
}
.bcs-tile-group .bcs-tile p {
  color: #505162;
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.25rem;
  text-align: center;
  margin-bottom: -1rem;
  padding-bottom: 2px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.bcs-tile-group .bcs-tile:not(.disabled):not(:disabled):hover, .bcs-tile-group .bcs-tile:not(.disabled):not(:disabled):focus {
  background-color: #dbdbde;
}
.bcs-tile-group .bcs-tile:not(.disabled):not(:disabled):active {
  background-color: #dbdbde;
}

a, .card-link {
  color: #c73456;
}
a:hover, .card-link:hover {
  color: #c73456;
  text-decoration: underline;
  text-decoration-thickness: 1px;
}

.required {
  color: #f05717 !important;
}

.text-muted {
  color: #9092a2 !important;
}

.text-primary {
  color: #4b5389 !important;
}

.text-secondary {
  color: #c73456 !important;
}

.text-warning {
  color: #f05717 !important;
}

.text-danger {
  color: #f05717 !important;
}

.text-success {
  color: #26a66c !important;
}

.text-info {
  color: #26a66c !important;
}

table.table {
  border: none;
  border-collapse: separate !important;
  border-spacing: 0;
  border-radius: 3px;
  border: 1px solid #c5c6d4;
}
table.table > thead > tr > th,
table.table > tbody > tr > th {
  background-color: #ececef;
  color: #505162;
  font-size: 0.875rem;
  font-family: "Barlow";
  font-weight: 400;
  font-style: normal;
  text-decoration: none;
  text-transform: none;
  font-size: 1rem;
  border: none;
}
table.table.table-sm > thead > tr > td, table.table.table-sm > tbody > tr > td, table.table.table-sm > thead > tr > th, table.table.table-sm > tbody > tr > th {
  padding-left: 0.5rem;
}
table.table.table-hover > tbody > tr:hover {
  background-color: transparent !important;
}
table.table.table-hover > tbody > tr:hover > td {
  background-color: rgba(236, 236, 239, 0.5);
}
table.table > tbody > tr {
  background-color: #ffffff !important;
}
table.table > tbody > tr > td {
  color: #32323c;
  font-size: 0.875rem;
  font-family: "Barlow";
  font-weight: 400;
  font-style: normal;
  text-decoration: none;
  text-transform: none;
  font-size: 1rem;
  border: 1px solid #d5d7e1;
  border-left-style: none;
  border-bottom-style: none;
  border-right-style: none;
}
table.table > tbody > tr > td > label {
  font-size: 1rem;
}
table.table > tbody > tr > td:first-of-type {
  /*border: 1px solid $bcs-color-gray-90;*/
  /* removing this fixes the "double left border" issue */
  /* but this also now requires a fix for "tables with a vertical header column" since that line is gone */
  border-bottom-style: none;
  border-right-style: none;
}
table.table > tbody > tr > td:first-child {
  border-left-style: none;
}
table.table > tbody:first-child > tr:first-child > td {
  border-top-style: none;
}
table.table > thead > tr > th:first-child {
  border-top-left-radius: 3px;
}
table.table > thead > tr > th:last-child {
  border-top-right-radius: 3px;
}
table.table > tbody > tr:last-child > th {
  border-bottom-left-radius: 3px;
}
table.table > tbody > tr:last-child > td:last-child {
  border-bottom-right-radius: 3px;
}

input.form-control,
input.custom-file-input,
select.form-control,
select.custom-select,
textarea.form-control,
.input-group {
  color: #32323c;
  background-color: #ffffff;
  border: 1px solid #c5c6d4;
  border-radius: 3px;
}

.form-control:focus {
  box-shadow: 0 0 0 0.2rem rgba(75, 83, 137, 0.2);
  border: 1px solid rgba(75, 83, 137, 0.25);
}

label[for],
label.control-label {
  font-size: 0.75rem;
  font-family: "Barlow";
  font-weight: 400;
  font-style: normal;
  text-decoration: none;
  text-transform: none;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
  padding-bottom: 0;
  transform: translate(0, 0.125rem);
}

small.form-text.text-muted {
  font-size: 0.75rem;
  font-family: "Barlow";
  font-weight: 400;
  font-style: normal;
  text-decoration: none;
  text-transform: none;
  color: #9092a2 !important;
}

.has-success input {
  border: 1px solid #26a66c;
}
.has-success input:focus {
  box-shadow: 0 0 0 0.2rem rgba(38, 166, 108, 0.2);
  border: 1px solid #26a66c;
}
.has-success .valid-feedback {
  color: #26a66c;
}

.has-danger input {
  border: 1px solid #f05717;
}
.has-danger input:focus {
  box-shadow: 0 0 0 0.2rem rgba(240, 87, 23, 0.2);
  border: 1px solid #f05717;
}
.has-danger .invalid-feedback {
  color: #f05717;
}

input.form-control[disabled] {
  background-color: #ececef;
  border: 1px solid #ececef;
  color: #9092a2;
}
input.form-control[disabled]::placeholder {
  color: #9092a2;
}

.input-group:not(.has-validation) > .form-control:not(:last-child) {
  border: 1px solid #c5c6d4;
  background-color: #ffffff;
  border-top-style: none;
  border-bottom-style: none;
}

.input-group > .input-group-prepend > .input-group-text,
.input-group > .input-group-append > .input-group-text {
  border: none;
}

.form-check input[type=radio],
.form-check input[type=checkbox] {
  accent-color: #4b5389;
  transform: translate(0, 0.0625rem);
}
.form-check input[type=radio][disabled]:after:not([checked]),
.form-check input[type=checkbox][disabled]:after:not([checked]) {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #d5d7e1;
}
.form-check input[type=checkbox][disabled]:after {
  border-radius: 3px;
}
.form-check.disabled > label {
  color: #9092a2;
}

.custom-control.custom-radio label.custom-control-label,
.custom-control.custom-checkbox label.custom-control-label,
.custom-control.custom-switch label.custom-control-label {
  font-size: 1rem;
  transform: translate(0, -0.0625rem);
}
.custom-control.custom-radio label.custom-control-label::before,
.custom-control.custom-checkbox label.custom-control-label::before,
.custom-control.custom-switch label.custom-control-label::before {
  transform: translate(0, 0.0625rem);
  border: 1px solid #9092a2;
}
.custom-control.custom-radio label.custom-control-label::after,
.custom-control.custom-checkbox label.custom-control-label::after,
.custom-control.custom-switch label.custom-control-label::after {
  transform: translate(0, 0.0625rem);
}
.custom-control.custom-radio label.custom-control-label:hover,
.custom-control.custom-checkbox label.custom-control-label:hover,
.custom-control.custom-switch label.custom-control-label:hover {
  cursor: pointer;
}
.custom-control.custom-radio .custom-control-input:hover ~ .custom-control-label::before,
.custom-control.custom-checkbox .custom-control-input:hover ~ .custom-control-label::before,
.custom-control.custom-switch .custom-control-input:hover ~ .custom-control-label::before {
  background-color: rgba(201, 204, 230, 0.25);
}
.custom-control.custom-radio .custom-control-input:focus ~ .custom-control-label::before,
.custom-control.custom-checkbox .custom-control-input:focus ~ .custom-control-label::before,
.custom-control.custom-switch .custom-control-input:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(75, 83, 137, 0.2);
}
.custom-control.custom-radio .custom-control-input:checked ~ .custom-control-label::before,
.custom-control.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before,
.custom-control.custom-switch .custom-control-input:checked ~ .custom-control-label::before {
  border-color: #4b5389;
  background-color: #4b5389;
}
.custom-control.custom-radio .custom-control-input:not(:disabled):active ~ .custom-control-label::before,
.custom-control.custom-checkbox .custom-control-input:not(:disabled):active ~ .custom-control-label::before,
.custom-control.custom-switch .custom-control-input:not(:disabled):active ~ .custom-control-label::before {
  background-color: rgba(75, 83, 137, 0.25) !important;
}
.custom-control.custom-radio .custom-control-input[disabled] ~ .custom-control-label,
.custom-control.custom-radio .custom-control-input:disabled ~ .custom-control-label,
.custom-control.custom-checkbox .custom-control-input[disabled] ~ .custom-control-label,
.custom-control.custom-checkbox .custom-control-input:disabled ~ .custom-control-label,
.custom-control.custom-switch .custom-control-input[disabled] ~ .custom-control-label,
.custom-control.custom-switch .custom-control-input:disabled ~ .custom-control-label {
  color: #9092a2;
  cursor: default !important;
}
.custom-control.custom-radio .custom-control-input[disabled] ~ .custom-control-label::before,
.custom-control.custom-radio .custom-control-input:disabled ~ .custom-control-label::before,
.custom-control.custom-checkbox .custom-control-input[disabled] ~ .custom-control-label::before,
.custom-control.custom-checkbox .custom-control-input:disabled ~ .custom-control-label::before,
.custom-control.custom-switch .custom-control-input[disabled] ~ .custom-control-label::before,
.custom-control.custom-switch .custom-control-input:disabled ~ .custom-control-label::before {
  background-color: #ececef;
  border: 1px solid #ececef;
}
.custom-control.custom-radio .custom-control-input:checked[disabled] ~ .custom-control-label::before,
.custom-control.custom-radio .custom-control-input:checked:disabled ~ .custom-control-label::before,
.custom-control.custom-checkbox .custom-control-input:checked[disabled] ~ .custom-control-label::before,
.custom-control.custom-checkbox .custom-control-input:checked:disabled ~ .custom-control-label::before,
.custom-control.custom-switch .custom-control-input:checked[disabled] ~ .custom-control-label::before,
.custom-control.custom-switch .custom-control-input:checked:disabled ~ .custom-control-label::before {
  background-color: #c5c6d4 !important;
  border: 1px solid #c5c6d4;
}

.custom-control.custom-radio .custom-control-input:checked[disabled] ~ .custom-control-label::after,
.custom-control.custom-radio .custom-control-input:checked:disabled ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%239092A2'/%3e%3c/svg%3e");
}

.custom-control.custom-checkbox .custom-control-input:checked[disabled] ~ .custom-control-label::after,
.custom-control.custom-checkbox .custom-control-input:checked:disabled ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%239092A2' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e");
}

.custom-control.custom-switch .custom-control-input:checked[disabled] ~ .custom-control-label::after,
.custom-control.custom-switch .custom-control-input:checked:disabled ~ .custom-control-label::after {
  background-color: #9092a2;
}

.custom-control.custom-switch .custom-control-input ~ .custom-control-label::after {
  transform: translate(0, 0.0625rem) scale(0.85);
}
.custom-control.custom-switch .custom-control-input:checked ~ .custom-control-label::after {
  transform: translate(0.75rem, 0.0625rem) scale(0.85);
}

.nav-tabs {
  border-bottom-color: #c5c6d4;
  border-bottom-width: 2px;
  border-bottom-style: solid;
}
.nav-tabs > .nav-item > .nav-link {
  border: none;
  transform: translate(0, 0.5px);
  transition: background-color 0.15s ease-out !important;
}
.nav-tabs > .nav-item > .nav-link.active {
  background-color: #ececef;
  border-bottom-color: #c73456;
  border-bottom-width: 2px;
  border-bottom-style: solid;
}

.nav-pills .show > .nav-link {
  background-color: #ffffff;
}
.nav-pills > .nav-item > .nav-link.active {
  background-color: #ececef;
}
.nav-pills > .nav-item > .nav-link:hover:not(.active) {
  text-decoration-thickness: 1px;
}
.nav-pills > .nav-item > .nav-link.disabled {
  color: #c5c6d4;
}

.nav-tabs > .nav-item > .nav-link,
.nav-pills > .nav-item > .nav-link {
  color: #323759;
  font-size: 0.875rem;
  font-family: "Barlow";
  font-weight: 500;
  font-style: normal;
  text-decoration: none;
  text-transform: none;
  font-size: 1rem;
  transition: all 0.15s ease-out;
}
.nav-tabs > .nav-item > .nav-link:hover:not(.active),
.nav-pills > .nav-item > .nav-link:hover:not(.active) {
  background-color: rgba(236, 236, 239, 0.5);
}
.nav-tabs > .nav-item > .nav-link.disabled,
.nav-pills > .nav-item > .nav-link.disabled {
  color: #c5c6d4;
}

.nav-tabs {
  margin-bottom: 15px;
}

.dropdown .dropdown-menu.show {
  background-color: #ffffff;
  box-shadow: 0px 0.25rem 0.75rem rgba(0, 0, 0, 0.3);
  border: none;
}
.dropdown .dropdown-menu.show a.dropdown-item {
  color: #32323c;
  transition: all 0.1s ease;
}
.dropdown .dropdown-menu.show a.dropdown-item:hover {
  background-color: #ececef;
}
.dropdown .dropdown-menu.show a.dropdown-item:hover:active {
  color: #32323c;
}
.dropdown .dropdown-menu.show a.dropdown-item:active {
  background-color: #ececef;
}
.dropdown .dropdown-menu.show .dropdown-divider {
  border-top: 1px solid #d5d7e1;
}

.breadcrumb {
  background-color: transparent;
  border-radius: 0px;
  padding: 0rem;
}
.breadcrumb .breadcrumb-item.active {
  color: #3d436d;
  font-weight: 500;
}
.breadcrumb .breadcrumb-item.active::before {
  font-weight: 400;
}

.pagination > .page-item > .page-link {
  margin-left: 0px;
  border: none;
  color: #505162;
  font-weight: 500;
  transition: all 0.1s ease;
  background-color: #f6f6f7;
}
.pagination > .page-item > .page-link:hover {
  color: #32323c;
  background-color: #ececef;
}
.pagination > .page-item > .page-link:focus {
  box-shadow: 0 0 0 0.2rem rgba(75, 83, 137, 0.2);
}
.pagination > .page-item.active > .page-link {
  background-color: #d5d7e1;
  color: #32323c;
  font-weight: 800;
}
.pagination > .page-item.active > .page-link:hover {
  background-color: #d5d7e1;
  cursor: initial;
}
.pagination > .page-item.disabled > .page-link {
  color: #c5c6d4;
}
.pagination.pagination > .page-item > .page-link {
  padding: 0.3rem 0.75rem;
}
.pagination.pagination-lg > .page-item > .page-link {
  padding: 0.5rem 1.2rem;
}
.pagination.pagination-sm > .page-item > .page-link {
  padding: 0.15rem 0.6rem;
}

.alert {
  color: #ffffff;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: start;
  padding: 0.5rem 0.5rem 0.5rem 1rem;
}
.alert.bcs-alert-popup {
  position: fixed;
  z-index: 9999;
  left: 6rem;
  right: 6rem;
  bottom: 2rem;
  max-width: 30vw;
  margin: auto;
  padding: 0.5rem 0.5rem 0.5rem 1rem;
  box-shadow: 0px 0.25rem 0.75rem rgba(0, 0, 0, 0.3);
}
@media (max-width: 1200px) {
  .alert.bcs-alert-popup {
    max-width: 45vw;
  }
}
@media (max-width: 768px) {
  .alert.bcs-alert-popup {
    max-width: 60vw;
  }
}
.alert * {
  color: #ffffff !important;
}
.alert .alert-link,
.alert strong {
  font-weight: 600;
  letter-spacing: 0.25px;
}
.alert .btn-close-notification,
.alert button.close {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  padding: 1rem;
  opacity: 80%;
}
.alert .btn-close-notification:hover,
.alert button.close:hover {
  background-color: rgba(0, 0, 0, 0.15);
}
.alert .btn-close-notification i,
.alert button.close i {
  font-size: 1rem;
}
.alert.alert-warning, .alert.alert-danger {
  background-color: #f05717;
}
.alert.alert-success, .alert.alert-info {
  background-color: #26a66c;
}
.alert.alert-primary {
  background-color: #4b5389;
}
.alert.alert-secondary {
  background-color: #c73456;
}
.alert.alert-light {
  background-color: #ececef;
  color: #32323c;
}
.alert.alert-light * {
  color: #32323c !important;
}
.alert.alert-light button.close {
  color: #9092a2;
}
.alert.alert-light button.close:hover {
  background-color: rgba(50, 50, 60, 0.08);
}

.bcs-alert {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  bottom: 2rem;
  width: 60vw;
  min-width: 30rem;
  box-shadow: 0px 0.25rem 0.75rem rgba(0, 0, 0, 0.3);
}

.badge {
  font-weight: 500;
  padding: 0.25rem 0.45rem;
}

.badge-primary {
  background-color: #4b5389 !important;
}

.badge-secondary {
  background-color: #c73456 !important;
}

.badge-info,
.badge-success {
  background-color: #26a66c !important;
}

.badge-warning,
.badge-danger {
  background-color: #f05717 !important;
  color: #ffffff;
}

.badge-dark {
  background-color: #505162 !important;
}

.badge-light {
  background-color: #ececef !important;
  color: #32323c;
}

.progress {
  background-color: #ececef;
  margin-bottom: 10px;
}
.progress .progress-bar {
  background-color: #4b5389;
}

.list-group > .list-group-item {
  transition: all 0.15s ease-out;
  border: 1px solid #d5d7e1;
  border-bottom-color: #ececef;
}
.list-group > .list-group-item:last-child {
  border-bottom-color: #d5d7e1;
}
.list-group > .list-group-item:hover {
  background-color: #ececef;
}
.list-group > .list-group-item.active {
  background-color: #4b5389;
}
.list-group > .list-group-item.active * {
  color: #ffffff;
}
.list-group > .list-group-item.active .text-muted {
  color: rgba(255, 255, 255, 0.5);
}
.list-group > .list-group-item + .list-group-item {
  border-top-width: 0px;
}
.list-group > .list-group-item:disabled, .list-group > .list-group-item.disabled {
  color: #c5c6d4;
}

.card {
  border: 1px solid #c5c6d4;
}
.card .card-header,
.card .card-footer {
  background-color: #ececef;
}
.card .card-header {
  padding: 0.35rem 0.6rem !important;
  border-bottom: 1px solid #c5c6d4;
}
.card .card-footer {
  border-top: 1px solid #c5c6d4;
}

.card.bg-primary,
.card.border-primary {
  border: 1px solid #4b5389 !important;
}
.card.bg-primary .card-header,
.card.border-primary .card-header {
  background-color: #4b5389;
  border-bottom: 1px solid #4b5389;
  color: #ffffff;
}
.card.bg-primary .card-body,
.card.border-primary .card-body {
  background-color: #ffffff;
  border-radius: 3px;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}

.card.bg-secondary,
.card.border-secondary {
  border: 1px solid #c73456 !important;
}
.card.bg-secondary .card-header,
.card.border-secondary .card-header {
  background-color: #c73456;
  border-bottom: 1px solid #c73456;
  color: #ffffff;
}
.card.bg-secondary .card-body,
.card.border-secondary .card-body {
  background-color: #ffffff;
  border-radius: 3px;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}

.card.bg-success,
.card.bg-info,
.card.border-success,
.card.border-info {
  border: 1px solid #26a66c !important;
}
.card.bg-success .card-header,
.card.bg-info .card-header,
.card.border-success .card-header,
.card.border-info .card-header {
  background-color: #26a66c;
  border-bottom: 1px solid #26a66c;
  color: #ffffff;
}
.card.bg-success .card-body,
.card.bg-info .card-body,
.card.border-success .card-body,
.card.border-info .card-body {
  background-color: #ffffff;
  border-radius: 3px;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}

.card.bg-warning,
.card.bg-danger,
.card.border-warning,
.card.border-danger {
  border: 1px solid #f05717 !important;
}
.card.bg-warning .card-header,
.card.bg-danger .card-header,
.card.border-warning .card-header,
.card.border-danger .card-header {
  background-color: #f05717;
  border-bottom: 1px solid #f05717;
  color: #ffffff;
}
.card.bg-warning .card-body,
.card.bg-danger .card-body,
.card.border-warning .card-body,
.card.border-danger .card-body {
  background-color: #ffffff;
  border-radius: 3px;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}

.card.bg-light,
.card.border-light {
  border: 1px solid #9092a2 !important;
}
.card.bg-light .card-header,
.card.border-light .card-header {
  background-color: #9092a2;
  border-bottom: 1px solid #9092a2;
  color: #ffffff;
}
.card.bg-light .card-body,
.card.border-light .card-body {
  background-color: #ffffff;
  border-radius: 3px;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}

.card.bg-dark,
.card.border-dark {
  border: 1px solid #32323c !important;
}
.card.bg-dark .card-header,
.card.border-dark .card-header {
  background-color: #32323c;
  border-bottom: 1px solid #32323c;
  color: #ffffff;
}
.card.bg-dark .card-body,
.card.border-dark .card-body {
  background-color: #ffffff;
  border-radius: 3px;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}

.card > .card-link.collapsed > .card-header {
  border-bottom-width: 0px;
}

.bcs-list-group {
  user-select: none;
}
.bcs-list-group .list-group .bcs-list-group-upper {
  border: 1px solid #c5c6d4;
  border-bottom: none;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  height: 1.75rem;
}
.bcs-list-group .list-group .bcs-list-group-upper input {
  border: none;
  border-radius: 0px;
  border-right: 1px solid #c5c6d4;
  height: 100%;
  box-shadow: none;
}
.bcs-list-group .list-group .bcs-list-group-upper .bcs-list-group-button {
  width: 2rem;
  height: 100%;
  border-radius: 0px;
  transition: all 0.15s ease-out;
}
.bcs-list-group .list-group .bcs-list-group-upper .bcs-list-group-button:hover {
  background-color: #dbdbde;
  transition: all 0.15s ease-out;
}
.bcs-list-group .list-group .bcs-list-group-upper .bcs-list-group-button > i::before {
  display: block;
  transform: translate(-0.2rem, -0.4rem);
  font-size: 0.875rem;
}
.bcs-list-group .list-group .bcs-list-group-upper .bcs-list-group-button > i::before {
  color: #9092a2;
  transition: all 0.15s ease-out;
}
.bcs-list-group .list-group .bcs-list-group-upper .bcs-list-group-button:hover > i::before {
  color: #505162;
  color: #4b5389;
  transition: all 0.15s ease-out;
}
.bcs-list-group .list-group .bcs-list-group-lower {
  border: 1px solid #c5c6d4;
  border-top: none;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}
.bcs-list-group .list-group .bcs-list-group-lower > small {
  letter-spacing: 1px;
  color: #9092a2;
}
.bcs-list-group .list-group .list-group {
  border: 1px solid #c5c6d4;
  border-radius: 0px;
}
.bcs-list-group .list-group .list-group .bcs-list-group-divider {
  height: 1px;
  background-color: #c5c6d4;
}
.bcs-list-group .list-group .list-group .list-group-item {
  margin: 0px;
  border: 0px;
  border-bottom: 1px solid #ececef;
}
.bcs-list-group .list-group .list-group .list-group-item:hover {
  cursor: pointer;
}
.bcs-list-group .list-group .list-group .list-group-item input[type=checkbox] {
  accent-color: #4b5389;
  transform: translate(0, 0.0625rem);
}
.bcs-list-group .list-group .list-group .list-group-item input[type=checkbox][disabled]:after:not([checked]) {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #d5d7e1;
}
.bcs-list-group .list-group .list-group .list-group-item input[type=checkbox][disabled]:after {
  border-radius: 3px;
}

.toast {
  box-shadow: 0px 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
  border: 1px solid #d5d7e1;
}
.toast .toast-header {
  background-color: #ececef;
  border: none;
}
.toast .toast-header button.close {
  transition: all 0.15s ease-out;
}
.toast .toast-header button.close::before {
  font-size: 1rem;
}

.popover {
  box-shadow: 0px 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
  border: 1px solid #d5d7e1;
}
.popover .popover-header {
  background-color: #ececef !important;
  border: none;
}

.tooltip-inner,
.bs-tooltip-inner {
  background-color: #323759;
}

.bs-tooltip-right .arrow::before,
.bs-tooltip-auto[x-placement^=right] .arrow::before {
  border-right-color: #323759 !important;
}

.bs-tooltip-top .arrow::before,
.bs-tooltip-auto[x-placement^=top] .arrow::before {
  border-top-color: #323759 !important;
}

.bs-tooltip-bottom .arrow::before,
.bs-tooltip-auto[x-placement^=bottom] .arrow::before {
  border-bottom-color: #323759 !important;
}

.bs-tooltip-left .arrow::before,
.bs-tooltip-auto[x-placement^=left] .arrow::before {
  border-left-color: #323759 !important;
}

.modal-content {
  box-shadow: 0px 0.25rem 0.75rem rgba(0, 0, 0, 0.3);
  border: none;
}
.modal-content .modal-header {
  padding: 0.5rem 1rem;
  background-color: #4b5389;
  border: none;
}
.modal-content .modal-header .modal-title {
  color: #ffffff;
  font-size: 1.25rem;
  font-family: "Barlow";
  font-weight: 500;
}
.modal-content .modal-header button.close {
  color: #ffffff;
  opacity: 75%;
  transform: translate(0.1rem, 0.2rem);
  padding: 0;
  margin: 0;
  transition: all 0.15s ease-out;
}
.modal-content .modal-header button.close i {
  color: #ffffff;
}
.modal-content .modal-header button.close:not(.disabled):not(:disabled):hover {
  opacity: 100%;
}
.modal-content .modal-header button.close::before {
  color: #ffffff;
}
.modal-content .modal-footer {
  border: none;
}

.modal-style-warning .modal-header,
.modal-style-danger .modal-header {
  background-color: #f05717;
}

.modal-style-success .modal-header,
.modal-style-info .modal-header {
  background-color: #26a66c;
}

.modal-style-primary .modal-header {
  background-color: #4b5389;
}

.modal-style-secondary .modal-header {
  background-color: #c73456;
}

.bcs-not-sidebar {
  display: flex;
  flex-direction: column;
  flex-grow: 2;
  margin-top: 5rem;
}

.bcs-content {
  flex-grow: 2;
  padding: 1.5rem;
}

.bcs-brand {
  min-height: 5rem;
  left: 0;
  top: 0;
  padding: 0.5rem 1.5rem;
  display: flex;
  justify-content: center;
  position: fixed;
  width: 15rem;
  align-items: center;
  z-index: 1040;
  background-color: #d61c3e;
}
.bcs-brand:hover {
  cursor: pointer;
}
.bcs-brand:hover::after {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  width: 6px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.33);
  transition: all 0.15s ease-out;
}
.bcs-brand.bcs-brand-smaller {
  min-height: 2.75rem;
  max-height: 2.75rem;
  width: 2.75rem;
  box-sizing: border-box;
}
.bcs-brand img {
  display: none;
  user-select: none;
}
.bcs-brand .bcs-brand-logo-show {
  display: block;
}
.bcs-brand .bcs-brand-logo-big {
  height: 2rem;
}
.bcs-brand .bcs-brand-logo-small {
  height: 1.5rem;
}

.bcs-sidebar {
  min-width: 15rem;
  background-color: #ececef;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  overflow: auto;
  z-index: 500;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.bcs-sidebar::-webkit-scrollbar {
  background: transparent;
  width: 0px;
}
.bcs-sidebar .bcs-sidebar-list {
  display: flex;
  flex-direction: column;
  margin-top: 5.5rem;
  margin-bottom: 2rem;
}
.bcs-sidebar .bcs-sidebar-list .bcs-sidebar-divider {
  height: 0px;
  margin: 1rem;
  overflow: hidden;
  border: 1px solid #c5c6d4;
}
.bcs-sidebar .bcs-sidebar-list .bcs-sidebar-item {
  min-height: 1.5rem;
  padding: 0.4rem 1rem 0.5rem 3rem;
  display: flex;
  align-items: flex-start;
  transition: background-color 0.15s ease-out !important;
  overflow: hidden;
  white-space: initial;
  word-break: break-word;
  width: 15rem;
  position: relative;
  line-height: 1.2;
  color: #323759;
}
.bcs-sidebar .bcs-sidebar-list .bcs-sidebar-item:hover {
  background: #d5d7e1;
}
.bcs-sidebar .bcs-sidebar-list .bcs-sidebar-item:hover.bcs-sidebar-dropdown-toggle:after {
  color: #323759;
}
.bcs-sidebar .bcs-sidebar-list .bcs-sidebar-item.bcs-sidebar-item-active {
  background: #d5d7e1;
  border-right: 2px solid #c73456;
}
.bcs-sidebar .bcs-sidebar-list .bcs-sidebar-item i {
  color: #323759;
  font-size: 1.125rem;
  margin-left: -2.5rem;
  margin-top: 0.15rem;
  position: absolute;
  width: 2rem;
  text-align: center;
}
.bcs-sidebar .bcs-sidebar-list .bcs-sidebar-dropdown > .bcs-sidebar-dropdown-menu > .bcs-sidebar-item {
  margin-left: 1.5rem;
  width: 13.5rem;
}
.bcs-sidebar .bcs-sidebar-list .bcs-sidebar-dropdown > .bcs-sidebar-dropdown-menu > .bcs-sidebar-item::before {
  content: "";
  position: absolute;
  border: 2px solid #d5d7e1;
  height: 100%;
  margin-left: -3rem;
  top: 0;
}
.bcs-sidebar .bcs-sidebar-dropdown {
  display: flex;
  flex-direction: column;
}
.bcs-sidebar .bcs-sidebar-dropdown .bcs-sidebar-dropdown-menu {
  display: none;
  flex-direction: column;
}
.bcs-sidebar .bcs-sidebar-dropdown .bcs-sidebar-dropdown-toggle:after {
  color: #c5c6d4;
  font-family: "Font Awesome 6 Pro";
  font-size: 1rem;
  font-weight: 500;
  transform: translate(0.5rem, 0.1rem);
  content: "›";
  margin-left: auto;
  display: inline-block;
  width: 1rem;
  height: 1rem;
}
.bcs-sidebar .bcs-sidebar-dropdown .bcs-sidebar-item-active:after {
  transform: translate(0.5rem, 0.1rem) translate(2px, 0px);
}
.bcs-sidebar .bcs-sidebar-dropdown.bcs-sidebar-toggle-open {
  background: rgba(255, 255, 255, 0.04);
}
.bcs-sidebar .bcs-sidebar-dropdown.bcs-sidebar-toggle-open > .bcs-sidebar-dropdown-toggle:after {
  transform: translate(0.3rem, 0.1rem);
  color: #323759;
  content: "⌄";
}
.bcs-sidebar .bcs-sidebar-dropdown.bcs-sidebar-toggle-open > .bcs-sidebar-dropdown-menu {
  display: flex;
}
.bcs-sidebar a {
  color: #323759;
  font-size: 1rem;
  font-family: "Barlow";
  font-weight: 500;
  font-style: normal;
  text-decoration: none;
  text-transform: none;
}
.bcs-sidebar a :hover {
  text-decoration: none;
}

.bcs-collapsed-sidebar .bcs-sidebar {
  display: none;
}

.bcs-upperbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  user-select: none;
}
.bcs-upperbar .bcs-titlebar {
  height: 2.75rem;
  background-color: #282b42;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-left: 0.3rem;
}
.bcs-upperbar .bcs-titlebar.bcs-titlebar-smaller {
  margin-left: 3rem;
  padding-right: 2.75rem;
}
.bcs-upperbar .bcs-titlebar .bcs-titlebar-icon {
  font-size: 1.4rem;
  margin-right: 0.5rem;
  margin-left: 0.75rem;
  padding-top: 0.7rem;
  color: #ffffff;
}
.bcs-upperbar .bcs-titlebar .bcs-titlebar-title {
  padding-top: 0.25rem;
  padding-right: 0.25rem;
  font-size: 1.375rem;
  font-family: "Barlow";
  font-weight: 500;
  font-style: normal;
  text-decoration: none;
  text-transform: none;
  font-weight: 400;
  color: #ffffff;
}
.bcs-upperbar .bcs-titlebar .bcs-titlebar-title:hover[href] {
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: rgba(255, 255, 255, 0.25);
  cursor: pointer;
}
.bcs-upperbar .bcs-titlebar .bcs-titlebar-divider {
  font-size: 1.4rem;
  margin: 0rem 0.6rem 0rem 0.4rem;
  padding-top: 0.7rem;
  color: rgba(144, 146, 162, 0.7);
}
.bcs-upperbar .bcs-titlebar .bcs-titlebar-left,
.bcs-upperbar .bcs-titlebar .bcs-titlebar-right {
  display: flex;
}
.bcs-upperbar .bcs-titlebar .bcs-titlebar-right .bcs-titlebar-title {
  font-weight: 300;
}
.bcs-upperbar .bcs-titlebar .bcs-titlebar-right .bcs-titlebar-account {
  display: flex;
  flex-wrap: nowrap;
  padding: 0rem 0.5rem 0rem 1rem;
  transition: all 0.15s ease-out;
}
.bcs-upperbar .bcs-titlebar .bcs-titlebar-right .bcs-titlebar-account:hover {
  background-color: #1c1f2e;
}
.bcs-upperbar .bcs-titlebar .bcs-titlebar-right .bcs-titlebar-account .bcs-titlebar-title {
  margin-right: -0.5rem;
  text-align: right;
}
.bcs-upperbar .bcs-titlebar .bcs-titlebar-right .bcs-titlebar-account .bcs-titlebar-account-dropdown {
  display: flex;
}
.bcs-upperbar .bcs-titlebar .bcs-titlebar-right .bcs-titlebar-account .bcs-titlebar-account-dropdown:hover {
  text-decoration: none;
}
.bcs-upperbar .bcs-titlebar .bcs-titlebar-right .bcs-titlebar-account .bcs-titlebar-account-dropdown::after {
  display: none;
}
.bcs-upperbar .bcs-titlebar .bcs-titlebar-right .bcs-titlebar-account > .dropdown-menu.show {
  box-shadow: 0px 0.25rem 0.75rem rgba(0, 0, 0, 0.3);
  border-radius: 0px;
  border-bottom-left-radius: 3px;
  transform: translate(100vw, 2.625rem) translate(-15rem, 0px) !important;
  position: fixed !important;
  right: 0px !important;
  top: 0px !important;
  width: 15rem !important;
}
.bcs-upperbar .bcs-tabsbar-fixed {
  background-color: #ececef;
  position: fixed;
  top: 2.75rem;
  width: calc(100vw - 15rem);
  height: 2.25rem;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  box-shadow: 0px 3px 0px white;
}
.bcs-upperbar .bcs-tabsbar-fixed .bcs-tab-fixed {
  display: inline-block;
  padding: 0.4rem 0.8rem 0.4rem 0.8rem;
  font-size: 1rem;
  font-family: "Barlow";
  font-weight: 500;
  font-style: normal;
  text-decoration: none;
  text-transform: none;
  transition: all 0.15s ease-out;
  color: #323759;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.bcs-upperbar .bcs-tabsbar-fixed .bcs-tab-fixed i {
  color: #323759;
  margin: 0rem 0.5rem 0rem 0rem;
}
.bcs-upperbar .bcs-tabsbar-fixed .bcs-tab-fixed:hover {
  background-color: #d5d7e1;
  cursor: pointer;
  transition: all 0.15s ease-out;
}
.bcs-upperbar .bcs-tabsbar-fixed .bcs-tab-fixed-active, .bcs-upperbar .bcs-tabsbar-fixed .active {
  background-color: #d5d7e1;
  padding-bottom: 0.275rem;
  border-bottom: 2px solid #c73456;
  transition: background-color 0.15s ease-out !important;
}
.bcs-upperbar .bcs-tabsbar-fixed .bcs-tab-fixed-active:hover, .bcs-upperbar .bcs-tabsbar-fixed .active:hover {
  cursor: default;
}

@media (max-width: 768px) {
  .bcs-content {
    padding: 0.75rem;
  }
}
@media (max-width: 1200px) {
  .bcs-brand {
    height: 2.75rem;
    min-height: 2.75rem;
    width: 2.75rem;
  }
  .bcs-brand .bcs-brand-logo-big {
    display: none;
  }
  .bcs-brand .bcs-brand-logo-small {
    display: block;
  }
  .bcs-brand.bcs-mobile-show {
    width: 100vw;
    height: 5rem;
    min-height: 5rem;
  }
  .bcs-brand.bcs-mobile-show .bcs-brand-logo-big {
    display: block;
  }
  .bcs-brand.bcs-mobile-show .bcs-brand-logo-small {
    display: none;
  }
  .bcs-sidebar {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 1030;
    width: 100vw;
  }
  .bcs-sidebar .bcs-sidebar-list .bcs-sidebar-item {
    width: auto;
    padding-right: 2.5rem;
  }
  .bcs-sidebar .bcs-sidebar-list .bcs-sidebar-dropdown > .bcs-sidebar-dropdown-menu > .bcs-sidebar-item {
    width: auto;
    padding-right: 2.5rem;
  }
  .bcs-sidebar.bcs-mobile-show {
    display: block;
  }
  .bcs-upperbar .bcs-titlebar {
    margin-left: 2.75rem;
    padding-right: 2.75rem;
  }
  .bcs-upperbar .bcs-titlebar .bcs-titlebar-right .bcs-titlebar-account {
    padding: 0rem 0.5rem;
    margin: 0px;
  }
  .bcs-upperbar .bcs-titlebar .bcs-titlebar-right .bcs-titlebar-account .bcs-titlebar-title {
    visibility: hidden;
    width: 0px;
  }
}
@media (min-width: 1201px) {
  .bcs-upperbar {
    left: 15rem;
  }
  .bcs-collapsed-sidebar .bcs-upperbar {
    left: 0;
  }
  .bcs-not-sidebar {
    margin-left: 15rem;
  }
  .bcs-collapsed-sidebar .bcs-not-sidebar {
    margin-left: 0;
  }
}
.table-sm td.form-check {
  padding-bottom: 0.5rem;
  min-height: 2.4rem;
}

h2:first-of-type {
  margin-top: 4rem;
  margin-bottom: 2rem;
}

.form-check .checkbox-label {
  font-size: 1rem;
  transform: translate(0.25rem, -0.0625rem);
}

.bcs-button-add-undertable {
  width: 100%;
  margin: auto;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
  color: #4b5389;
}
.bcs-button-add-undertable i {
  color: #4b5389;
}
.bcs-button-add-undertable:hover {
  color: #4b5389;
  background-color: rgba(75, 83, 137, 0.1);
}

.card > .card-link:hover {
  text-decoration: none;
}
.card > .card-link .card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.15s ease-out;
}
.card > .card-link .card-header:hover {
  background-color: #dbdbde;
  transition: all 0.15s ease-out;
}
.card > .card-link .card-header i, .card > .card-link .card-header b {
  color: #32323c;
}
.card > .card-link .card-header i {
  min-width: 1rem;
}
.card > .card-link .card-header i.fa-angle-right {
  color: #9092a2 !important;
}
.card > .card-link .card-header i.fa-angle-down {
  color: #505162 !important;
}

.button-toggle-row {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0rem !important;
  box-shadow: none !important;
}
.button-toggle-row i {
  min-width: 1rem;
}
.button-toggle-row i.fa-angle-right {
  color: #9092a2 !important;
}
.button-toggle-row i.fa-angle-down {
  color: #505162 !important;
}

b, strong {
  font-family: "Barlow" !important;
  font-weight: 500 !important;
}

th .button-sort {
  color: rgba(144, 146, 162, 0.8);
  padding: 0.25rem;
  border-radius: 3px;
  width: 2rem;
  height: 2rem;
}
th .button-sort:hover {
  background-color: #dbdbde;
}

/*table.table > tbody > tr > td {
    word-wrap: break-word;
    word-break: break-all;
}*/
.nav.bcs-tabsbar-fixed {
  flex-wrap: nowrap;
}

.form-control {
  padding: 0.375rem;
}

@media (min-width: 768px) {
  .bcs-search-filter {
    width: 50% !important;
  }
}
@media (min-width: 900px) {
  .bcs-search-filter {
    width: 35% !important;
  }
}
@media (min-width: 1400px) {
  .bcs-search-filter {
    width: 25% !important;
  }
}
@media (max-width: 767px) {
  .bcs-search-filter {
    width: 75% !important;
  }
}

.image-container > div, #image-container > div {
  background-color: rgba(236, 236, 239, 0.5);
  border-radius: 3px;
  margin-bottom: 2rem;
  padding: 1rem;
  gap: 1rem;
}
.image-container .image-item:hover, #image-container .image-item:hover {
  cursor: move;
}
.image-container .image-item .card .upload-card, #image-container .image-item .card .upload-card {
  max-height: 20rem;
  max-width: 20rem;
  min-height: 10rem;
  min-width: 10rem;
  object-fit: contain;
}
.image-container .image-item .card .card-footer, #image-container .image-item .card .card-footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}
.image-container .image-item .card .card-footer > *, #image-container .image-item .card .card-footer > * {
  line-height: 1rem;
}
.image-container .images-part, #image-container .images-part {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.image-container .upload-part .upload-card, #image-container .upload-part .upload-card {
  transition: all 0.15s ease-out;
}
.image-container .upload-part .upload-card:hover, #image-container .upload-part .upload-card:hover {
  transition: all 0.15s ease-out;
  cursor: pointer;
  background-color: rgba(236, 236, 239, 0.5);
}

@media screen and (min-width: 1440px) {
  .table-responsive {
    display: table;
  }
}

.bcs-checkbox-label-alt {
  transform: translate(0.25rem, -0.0625rem) !important;
}

.bcs-bom-style-info-images {
  padding: 2rem;
  border-radius: 3px;
  border: 1px solid #c5c6d4;
  margin-left: 1.875rem;
}

.bcs-no-records-found {
  margin: 2rem -1rem 0rem -1rem;
  padding: 0.5rem;
  padding-left: 1rem;
  color: #f05717;
  background-color: rgba(240, 87, 23, 0.12);
  font-size: 1rem;
  border-radius: 3px;
}

[id^=DataTables].dataTables_wrapper .dataTables_length label select {
  border: 1px solid #c5c6d4 !important;
  border-radius: 3px;
}
[id^=DataTables].dataTables_wrapper .dataTables_length label select:focus-visible, [id^=DataTables].dataTables_wrapper .dataTables_length label select:focus {
  box-shadow: 0 0 0 0.2rem rgba(75, 83, 137, 0.2);
  border: 1px solid rgba(75, 83, 137, 0.25);
  outline: none !important;
}
[id^=DataTables].dataTables_wrapper .dataTables_filter label input {
  color: #32323c;
  background-color: #ffffff;
  border: 1px solid #c5c6d4;
  border-radius: 3px;
}
[id^=DataTables].dataTables_wrapper .dataTables_filter label input:focus-visible, [id^=DataTables].dataTables_wrapper .dataTables_filter label input:focus {
  box-shadow: 0 0 0 0.2rem rgba(75, 83, 137, 0.2);
  border: 1px solid rgba(75, 83, 137, 0.25);
  outline: none !important;
}
[id^=DataTables].dataTables_wrapper table.table.dataTable {
  border: 1px solid #c5c6d4 !important;
}
[id^=DataTables].dataTables_wrapper .dataTables_info {
  font-style: italic;
  color: #9092a2;
}
[id^=DataTables].dataTables_wrapper .dataTables_paginate a.paginate_button {
  background-image: none !important;
  border: none;
  border-radius: 3px;
  color: #505162;
  font-weight: 500;
  transition: all 0.1s ease;
}
[id^=DataTables].dataTables_wrapper .dataTables_paginate a.paginate_button:hover:not(.disabled) {
  background-color: rgba(236, 236, 239, 0.5);
  color: #505162 !important;
  border: none !important;
}
[id^=DataTables].dataTables_wrapper .dataTables_paginate a.paginate_button:focus {
  box-shadow: 0 0 0 0.2rem rgba(75, 83, 137, 0.2);
}
[id^=DataTables].dataTables_wrapper .dataTables_paginate a.paginate_button.current {
  background-color: #ececef;
  color: #32323c;
  font-weight: 800;
}
[id^=DataTables].dataTables_wrapper .dataTables_paginate a.paginate_button.current:hover {
  background-color: #ececef !important;
}
[id^=DataTables].dataTables_wrapper .dataTables_paginate a.paginate_button.disabled {
  border: none !important;
  color: #c5c6d4 !important;
  font-weight: 400;
}
[id^=DataTables].dataTables_wrapper .dataTables_paginate a.paginate_button.disabled:hover {
  background-color: none !important;
}
[id^=DataTables].dataTables_wrapper .dataTables_paginate a.paginate_button.disabled:focus, [id^=DataTables].dataTables_wrapper .dataTables_paginate a.paginate_button.disabled:focus-visible {
  box-shadow: none !important;
  outline: none !important;
}

.bcs-link-to-component-part {
  padding: 0;
  margin: 0;
  float: right;
}
.bcs-link-to-component-part span {
  display: inline-block;
  font-size: 0.8rem;
  transform: translate(0px, 3px);
  color: rgba(199, 52, 86, 0.8);
}
.bcs-link-to-component-part i {
  transform: translateY(4px);
  color: #c5c6d4;
}
.bcs-link-to-component-part:hover span {
  color: #c73456;
  text-decoration: underline;
}
.bcs-link-to-component-part:hover i {
  cursor: pointer;
  color: #c73456;
}

.validation-summary-errors ul {
  padding: 0.5rem;
  padding-left: 0;
  border-radius: 3px;
  background-color: rgba(240, 87, 23, 0.12);
}
.validation-summary-errors ul li {
  list-style: none;
  padding-left: 1rem;
  color: #f05717;
  font-size: 1rem;
}

td > input.check-box[disabled=disabled] {
  display: none;
}
.bcs-row-grabber td:first-child {
  padding: 0.75rem !important;
}
.bcs-row-grabber td:first-child i {
  color: #505162;
}
.bcs-row-grabber:hover {
  cursor: grabbing;
}
.bcs-row-grabber td.form-check {
  height: 3rem;
}
.bcs-row-grabber td.form-check input {
  transform: translate(0px, 0.5rem);
}

.bcs-info-tiles-group {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.bcs-info-tiles-group .bcs-info-tile {
  flex: 45%;
  border: none;
  background-color: #ececef;
  padding: 1.5rem;
  margin: 1rem;
  display: block;
  transition: all 0.15s ease-out;
  border-radius: 3px;
  min-height: 15rem;
  min-width: 27rem;
}
@media (max-width: 1000px) {
  .bcs-info-tiles-group .bcs-info-tile {
    flex: 100%;
    min-width: 0rem;
  }
}
.bcs-info-tiles-group .bcs-info-tile .bcs-info-tile-number {
  text-align: right;
  font-weight: 500;
  font-size: 2rem;
  color: rgba(80, 81, 98, 0.75);
  margin-top: -0.75rem;
}
.bcs-info-tiles-group .bcs-info-tile .bcs-info-tile-number span {
  font-size: 1.25rem;
  color: #9092a2;
}
.bcs-info-tiles-group .bcs-info-tile .bcs-info-tile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.bcs-info-tiles-group .bcs-info-tile .bcs-info-tile-header .bcs-info-tile-title {
  background-color: transparent;
  display: flex;
  justify-content: start;
  align-items: center;
}
.bcs-info-tiles-group .bcs-info-tile .bcs-info-tile-header .bcs-info-tile-title i {
  color: rgba(80, 81, 98, 0.8);
  font-size: 2.5rem;
  margin-top: -0.75rem;
}
.bcs-info-tiles-group .bcs-info-tile .bcs-info-tile-header .bcs-info-tile-title p {
  color: #505162;
  font-weight: 500;
  font-size: 1.25rem;
  margin-left: 1rem;
}
.bcs-info-tiles-group .bcs-info-tile:hover {
  background-color: #dbdbde;
  transition: all 0.15s ease-out;
  text-decoration: none !important;
}

[data-id=remove-translation] {
  display: block;
  margin-top: 0.35rem;
}

.custom-control-input {
  z-index: 1;
}
.custom-control-input:hover {
  cursor: pointer !important;
}
.custom-control-input[disabled]:hover {
  cursor: initial !important;
}

.custom-control.custom-checkbox .custom-control-input:checked[disabled] ~ .custom-control-label::before {
  border: none !important;
}

.custom-checkbox .custom-control-input:disabled ~ .custom-control-label::before {
  background-color: #ececef !important;
}

.bcs-tooltip i {
  transform: translate(0.25rem, 0.25rem);
  color: #505162;
}
.bcs-tooltip:hover i {
  color: #d65674;
  font-weight: 800;
  cursor: help;
}

.bcs-text-item-to-delete {
  color: #f05717;
  font-weight: 500;
  word-break: break-all;
}

td, th {
  padding: 0.4rem !important;
}

.bcs-shadowless {
  box-shadow: none !important;
}

.bcs-border {
  border: 1px solid #c5c6d4 !important;
}

.bcs-border-vertical {
  border-top: 1px solid #c5c6d4 !important;
  border-bottom: 1px solid #c5c6d4 !important;
}

.bcs-border-horizontal {
  border-left: 1px solid #c5c6d4 !important;
  border-right: 1px solid #c5c6d4 !important;
}

.bcs-border-top {
  border-top: 1px solid #c5c6d4 !important;
}

.bcs-border-bottom {
  border-bottom: 1px solid #c5c6d4 !important;
}

.bcs-border-right {
  border-right: 1px solid #c5c6d4 !important;
}

.bcs-border-left {
  border-left: 1px solid #c5c6d4 !important;
}

.bcs-borderless {
  border: none !important;
}

.bcs-borderless-vertical {
  border-top: none !important;
  border-bottom: none !important;
}

.bcs-borderless-horizontal {
  border-left: none !important;
  border-right: none !important;
}

.bcs-borderless-top {
  border-top: none !important;
}

.bcs-borderless-bottom {
  border-bottom: none !important;
}

.bcs-borderless-right {
  border-right: none !important;
}

.bcs-borderless-left {
  border-left: none !important;
}

.bcs-border-radius {
  border-radius: 3px !important;
}

.bcs-no-border-radius {
  border-radius: 0 !important;
}

.bcs-font-weight-semibold {
  font-weight: 600 !important;
}

.bcs-font-weight-medium {
  font-weight: 500 !important;
}

.bcs-upperbar, .card, .bcs-sidebar, .table {
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
}

.bcs-input-group .bcs-input-group-prepend input, .bcs-input-group .bcs-input-group-prepend span {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
.bcs-input-group .bcs-input-group-append select, .bcs-input-group .bcs-input-group-append input {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  border-left: none !important;
}
.bcs-input-group .bcs-input-group-append select {
  background-color: #ececef;
}

.bcs-keep-cursor {
  cursor: initial !important;
}

.bcs-text-color-warning {
  color: #f05717 !important;
}

.bcs-text-color-success {
  color: #26a66c !important;
}

.bcs-text-muted {
  color: #9092a2 !important;
}

select[disabled], textarea[disabled] {
  color: #9092a2 !important;
  border: 0 !important;
  background: #ececef !important;
}

.modal .custom-control-input {
  z-index: -1 !important;
}

/* Order from general to specific */
